home *** CD-ROM | disk | FTP | other *** search
Text File | 1984-07-24 | 13.0 KB | 431 lines | [BLKS/M4TH] |
- rameOval(r);
- SetRect(r, 410, 50, 450, 90); {Completely inside the first shape}
- FrameRoundRect(r, 18, 18);
- CloseRgn(My_Rgn);
-
- Use_Region;
- DrawWords(352, 0);
- end;
-
- procedure DoRegion4;
-
- { Region 4. This creates a region which shows the effect of }
- {partially overlapping region areas.}
-
- var
- r : Rect;
-
- begin
- ClearRgn;
- MoveTo(40, 310);
- DrawString('Overlapping');
-
- OpenRgn;
- SetRect(r, 30, 180, 130, 280);
- FrameOval(r); { Draw a simple circle }
- SetRect(r, 5, 215, 155, 245);
- FrameRect(r); { Draw a rectangle over the circle }
- CloseRgn(My_Rgn);
-
- Use_Region;
- DrawWords(0, 149);
- end;
-
- procedure DoRegion5;
-
- { Region 5. Regions do not have to be contiguous. This procedure creates}
- {a region with three separate areas.}
-
- var
- r : Rect;
-
- begin
- ClearRgn;
- MoveTo(220, 310);
- DrawString('Disjoint Areas');
-
- OpenRgn;
- SetRect(r, 190, 160, 270, 230);
- FrameOval(r);
- SetRect(r, 280, 160, 340, 240);
- FrameRect(r);
- SetRect(r, 190, 255, 340, 285);
- FrameRoundRect(r, 18, 18);
-
- CloseRgn(My_Rgn);
- Use_Region;
- DrawWords(176, 150);
- end;
-
- procedure DoRegion6;
-
- { Region 6. This procedure illustrates the effect of continuous clipping}
- {associated with any drawing, even animation.}
-
- var
- r : Rect;
-
- procedure Animate;
-
- { Animate, called only by DoRegion6, bounces a ball in the general area}
- {of region 6, showing that the clipping occurs constantly, with now need}
- {for special instructions. The animation stops when the mouse button is}
- {pressed.}
-
- var
- X, Y, dX, dY : integer;
-
- begin
- X := 353; { Arbitrary starting position. }
- Y := 220;
- dX := 3; { Arbitrary beginning velocity. }
- dY := 0;
- repeat
- PenPat(white); { Use white for drawing to }
- PaintCircle(X, Y, 5); { erase ball at current position }
- X := X + dX; { upgrade position }
- Y := Y + dY;
- if (X < 353) or (X > 510) or (Y < 175) or (y > 265) then
- begin { The ball has hit a "wall" and should bounce }
- X := X - dX; { Move the ball back to its last legal position }
- Y := Y - dY;
- repeat
- dX := ((random mod 3) - 1) * 7; { Choose new random velocities,}
- dY := ((random mod 3) - 1) * 7; {with each being -7,0, or 7 }
- until (dX <> 0) or (dY <> 0); { zero velocity is illegal }
- end
- else { new ball position is okay. }
- begin
- PenPat(black);
- PaintCircle(X, Y, 5); { Draw the ball in the new position }
- end;
- until Button; { Stop when the button is pressed }
- end;
-
- begin { Region6 }
- ClearRgn;
- SetRect(r, 353, 150, 530, 290);
- FillRect(r, gray); { Use a gray background for contrast }
- MoveTo(375, 310);
- DrawString('Continuous Clipping');
-
- OpenRgn;
- SetRect(r, 357, 185, 432, 255);
- FrameOval(r);
- SetRect(r, 432, 185, 507, 255);
- FrameOval(r);
- CloseRgn(My_Rgn);
-
- Use_Region;
- SetRect(r, 353, 150, 530, 290);
- FillRect(r, white); { Erase the inside of the region, using auto-clipping}
- Animate; { Do the bouncing ball }
- end;
-
- procedure MakeRgns;
-
- { This is a brute force way to call all six regi“◊õá^zõá^z á